home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / lib / readline / doc / Makefile < prev    next >
Makefile  |  1991-07-30  |  1KB  |  37 lines

  1. # This makefile for Readline library documentation is in -*- text -*- mode.
  2. # Emacs likes it that way.
  3.  
  4. DVIOBJ = readline.dvi history.dvi
  5. INFOBJ = readline.info history.info
  6.  
  7. all: $(DVIOBJ) $(INFOBJ)
  8.  
  9. readline.dvi: texindex rlman.texinfo rluser.texinfo rltech.texinfo
  10.     tex rlman.texinfo
  11.     ./texindex rlman.??
  12.     tex rlman.texinfo
  13.     mv rlman.dvi readline.dvi
  14.  
  15. history.dvi: texindex hist.texinfo hsuser.texinfo hstech.texinfo
  16.     tex hist.texinfo
  17.     tex hist.texinfo
  18.     mv hist.dvi history.dvi
  19.  
  20. readline.info: rlman.texinfo rluser.texinfo rltech.texinfo
  21.     makeinfo rlman.texinfo
  22.  
  23. history.info: hist.texinfo hsuser.texinfo hstech.texinfo
  24.     makeinfo hist.texinfo
  25.  
  26. texindex: texindex.o
  27.     $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $?
  28. texindex.o: texindex.c
  29.  
  30. clean:
  31.     rm -f *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.cps *.pgs \
  32.           *.fns *.kys *.tps *.vrs *.o core texindex
  33.  
  34. squeaky-clean:
  35.     rm -f *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.cps *.pgs \
  36.           *.dvi *.info *.info-* *.fns *.kys *.tps *.vrs *.o core texindex
  37.